Keycloak REST Services 1.3.0.Final

Path: / admin / realms / {realm} / authentication-flows / flow / {flowAlias} / executions

Path parameters:
realm - realm name (not id!)
flowAlias -

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/authentication-flows/flow/{flowAlias}/executions 
PUT /admin/realms/{realm}/authentication-flows/flow/{flowAlias}/executions 

Method Detail

GET /admin/realms/{realm}/authentication-flows/flow/{flowAlias}/executions

HTTP Example:
GET /admin/realms/{realm}/authentication-flows/flow/{flowAlias}/executions
API Example:

AuthenticationFlowResource.getExecutions({'realm': /* name realm name (not id!) */,
  'flowAlias': …});

Output:
Response
Produces:
application/json

PUT /admin/realms/{realm}/authentication-flows/flow/{flowAlias}/executions

HTTP Example:
PUT /admin/realms/{realm}/authentication-flows/flow/{flowAlias}/executions
API Example:

AuthenticationFlowResource.updateExecutions({'realm': /* name realm name (not id!) */,
  'flowAlias': …,
  '$entity': …});

Input:
AuthenticationExecutionRepresentation
Output:
void
Consumes:
application/json

Keycloak REST Services 1.3.0.Final